Linux修改文件夹的颜色

Linux下面文件夹的颜色(默认为深蓝),修改文件夹颜色的方法分为三步来解决:

1.配置文件:

执行该语句 (dircolors 这个名字一会会用到)

1
dircolors -p > ~/.dircolors

2.修改文件:

1
vim  ~/.dircolors

打开文件,找到这一行:

1
DIR 01;34 # directory
1
2
3
4
5
6
7
8
9
10
11
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00 # normal file
DIR 01;34 # directory
LINK 01;36 # symbolic link
FIFO 40;33 # pipe
SOCK 01;35 # socket
BLK 40;33;01 # block device driver
#修改34,换一个想要的颜色就可以了,
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white

3.重新加载:

看一下~/.bashrc这个文件,里面有关于上面会用到的名字关联

1
2
3
4
5
6
7
8
9
10
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi

然后重新加载文件
执行以下就重新加载

1
source ~/.bashrc
继开 wechat
欢迎加我的微信,共同交流技术